527bab0b80fd2875a68ec637a5891068bd94508a,org.spoofax.jsglr/src/org/spoofax/jsglr/client/editregion/detection/LCS.java,LCS,getResultLCS1,#,123

Before Change


	 * @return LCS elements for input 1
	 */
	public ArrayList<T> getResultLCS1() {
		return getIncludedElems(elems1, matchedIndices1);
	}

	/**

After Change


	 * @return LCS elements for input 1
	 */
	public ArrayList<T> getResultLCS1() {
		if(resultLCS1 == null){
			resultLCS1 = getIncludedElems(elems1, matchedIndices1);
		}
		return resultLCS1;
	}

	/**